home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-8.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Screen" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "metals.inc"
- #default { finish { Shiny } }
-
- background { White }
- camera { location < 8, 8, -24 > look_at < 0, -2, 0 > }
- light_source { < 0, 100, -100 > color rgb < 2, 2, 2 > }
-
- //------------------------------------------------------------------->
- //
- // Build it and show it.
-
- #include "screen.inc"
- object { Screen translate < -8, -4, 0 > }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-